How to make joomla 1.0.x compatible to php 5.3.x without upgrading to joomla 1.5.x

Here is simple hack to make joomla 1.0.x compatible to php 5.3.x, go to Function.php filesĀ  your directory on /public_html/includes/Cache/Lite. Then : Replace: $arguments = func_get_args(); with $arguments = func_get_args(); $numargs = func_num_args(); for($i=1; $i < $numargs; $i++){ $arguments[$i] = &$arguments[$i]; } in includes/Cache/Lite/Function.php. It will fix compatibility view issues for joomla 1.0.x on php … Continue reading How to make joomla 1.0.x compatible to php 5.3.x without upgrading to joomla 1.5.x